home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / c / library / mslang / isam / tut1 / empmaint.mak < prev   
Encoding:
Text File  |  1994-02-07  |  1.0 KB  |  61 lines

  1. .AUTODEPEND
  2.  
  3. #               *Translator Definitions*
  4. CC = bcc +EMPMAINT.CFG
  5. TASM = TASM
  6. TLIB = tlib
  7. TLINK = tlink
  8. LIBPATH = C:\BORLANDC\LIB;C:\ISAMMGR\LIB
  9. INCLUDEPATH = C:\BORLANDC\INCLUDE;C:\ISAMMGR\INCLUDE
  10.  
  11.  
  12. #               *Implicit Rules*
  13. .c.obj:
  14.   $(CC) -c {$< }
  15.  
  16. .cpp.obj:
  17.   $(CC) -c {$< }
  18.  
  19. #               *List Macros*
  20. Link_Exclude =  \
  21.  employee.h
  22.  
  23. Link_Include =  \
  24.  employee.obj \
  25.  empmaint.obj \
  26.  {$(LIBPATH)}imbc.lib
  27.  
  28. #               *Explicit Rules*
  29. empmaint.exe: empmaint.cfg $(Link_Exclude) $(Link_Include)
  30.   $(TLINK) /v/x/c/P-/L$(LIBPATH) @&&|
  31. c0c.obj+
  32. employee.obj+
  33. empmaint.obj
  34. empmaint
  35.         # no map file
  36. imbc.lib+
  37. emu.lib+
  38. mathc.lib+
  39. cc.lib
  40. |
  41.  
  42.  
  43. #               *Individual File Dependencies*
  44.  
  45. employee.obj: empmaint.cfg employee.cpp 
  46.  
  47. empmaint.obj: empmaint.cfg empmaint.cpp 
  48.  
  49. employee.h: empmaint.cfg employee.ddf 
  50.     DDF EMPLOYEE.DDF
  51.  
  52. #               *Compiler Configuration File*
  53. empmaint.cfg: empmaint.mak
  54.   copy &&|
  55. -mc
  56. -I$(INCLUDEPATH)
  57. -L$(LIBPATH)
  58. | empmaint.cfg
  59.  
  60.  
  61.